home *** CD-ROM | disk | FTP | other *** search
/ The 640 MEG Shareware Studio 2 / The 640 Meg Shareware Studio CD-ROM Volume II (Data Express)(1993).ISO / comm / tftb.zip / TFE.SLT < prev    next >
Text File  |  1992-04-24  |  1KB  |  30 lines

  1.  
  2. ///////////////////////////////////////////////////////////
  3. // PROGRAM:                                              //
  4. // AUTHOR:  Christopher Saunders                         //
  5. // DATE:    April 25th 1992                              //
  6. //                                                       //
  7. // INFORMATION                                           //
  8. // ~~~~~~~~~~~                                           //
  9. // TFE (TelixFonEd) by Paul Roub is  a brilliant program //
  10. // that allows you to edit your Telix dialing directory. //
  11. // This script will  execute TFE from  within Telix, and //
  12. // will prevent  from your dialing  directory from being //
  13. // trashed  (Telix does  not  close it when  shelling to //
  14. // DOS - done to  increase  speed).  A similar script is //
  15. // found in the TFE  documentation, however,  the NEWDIR //
  16. // function  will  ensure  that  you are  in  the  Telix //
  17. // directory.  If you  are not in  the  Telix directory, //
  18. // then Telix would not be able to find TELIX.FON.       //
  19. ///////////////////////////////////////////////////////////
  20.  
  21. main()
  22.  
  23. {
  24.   loadfon("DUMMY.FON.");       // Loads DUMMY.FON
  25.   newdir(_telix_dir);          // Puts you in the Telix directory
  26.   run ("TFE","TELIX.FON",0);   // Runs TFE
  27.   loadfon("TELIX.FON");        // Loads TELIX.FON back into Telix
  28. }
  29.  
  30.